home *** CD-ROM | disk | FTP | other *** search
/ Quick PC 61 / Quick PC 61.iso / I386 / SASETUP.MSI / F77554_sh_defaultfooter.asp < prev    next >
Encoding:
Text File  |  2003-02-21  |  1.2 KB  |  45 lines

  1. <%@ Language=VBScript   %>
  2. <%    '==================================================
  3.     ' Microsoft Server Appliance
  4.     ' Default Footer page
  5.     ' Copyright (c) Microsoft Corporation.  All rights reserved.
  6.     '==================================================
  7. %>
  8. <!-- #include file="inc_framework.asp" -->
  9. <html>
  10. <!-- Copyright (c) Microsoft Corporation.  All rights reserved.-->
  11. <meta http-equiv="Content-Type" content="text/html; charset=<%=GetCharSet()%>">
  12. <meta http-equiv="PRAGMA" content="NO-CACHE">
  13. <script language='javascript'>
  14. function Init()
  15. {
  16.     try
  17.     {
  18.         if ( top.main != null )
  19.         {
  20.             //
  21.             // If the top frame has been initialize already that means this
  22.             // page has been loaded as a result of the User pressing the
  23.             // Back button in the browser. Task pages require a two state
  24.             // process to load so the first Back operation results in this page
  25.             // being reloaded. What we really want is to go back to the page
  26.             // before this so we fire the window.history.back() method one
  27.             // more time to cause that result.
  28.             //
  29.             if ( true ==  top.main.SA_IsPageInitialized())
  30.             {
  31.                 
  32.                 window.history.back();
  33.             }
  34.         }
  35.     }
  36.     catch(oException)
  37.     {
  38.     }
  39. }
  40. </script>
  41. </head>
  42. <body onload='Init();'>
  43. </body>
  44. </html>
  45.